home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 12 code / Components / Headers / MoMathComponentPrivate.h < prev    next >
Encoding:
Text File  |  1994-12-02  |  1.1 KB  |  44 lines  |  [TEXT/MMCC]

  1. /*
  2.     File:        MoMathComponentPrivate.h
  3.  
  4.     Contains:    Private header file for MoMath component routines.
  5.  
  6.     Written by:    Gary Woodcock
  7.  
  8.     Copyright:    © 1992 by Apple Computer, Inc.
  9.  
  10.     Change History (most recent first):
  11.  
  12. */
  13.  
  14. //-----------------------------------------------------------------------
  15. // Includes
  16.  
  17. #ifndef    _MOMATHCOMPONENTPRIVATE_
  18. #define    _MOMATHCOMPONENTPRIVATE_
  19.  
  20. #include <QuickTimeComponents.h>
  21.  
  22. //-----------------------------------------------------------------------
  23. // Private prototypes
  24.  
  25. #ifdef DEBUG_IT
  26.                      
  27. // Only need this prototype if we're running linked (for debugging)
  28. pascal    ComponentResult    MoMathDispatcher    (ComponentParameters    *params,
  29.                                              Handle                    storage);
  30.  
  31. #endif DEBUG_IT
  32.  
  33. pascal    ComponentResult    MoMathCanDo        (short                    selector);
  34.  
  35. pascal    ComponentResult    MoMathDoAdd        (short                    firstNum,
  36.                                              short                    secondNum,
  37.                                              short                    *additionResult);
  38.  
  39. //-----------------------------------------------------------------------
  40.  
  41. #endif    _MOMATHCOMPONENTPRIVATE_
  42.  
  43. //-----------------------------------------------------------------------
  44.